home *** CD-ROM | disk | FTP | other *** search
/ Enter Special 5: Digital Photography / ENTER Special 05.iso / Grafika / Paint Shop Pro 8.0 / psp800ev.exe / Data1.cab / Preset_NewFile_CD_Insert.Psp < prev    next >
Encoding:
Text File  |  2003-04-22  |  653 b   |  27 lines

  1. from JascApp import *
  2.  
  3. def ScriptProperties():
  4.     return {
  5.         'Author': '',
  6.         'Copyright': '',
  7.         'Description': '',
  8.         'Host': 'Paint Shop Pro',
  9.         'Host Version': '8.00'
  10.         }
  11.  
  12. def Preset_NewFile():
  13.     return {
  14.         'Width': 4.800000, 
  15.         'Height': 4.800000, 
  16.         'ColorDepth': 4, 
  17.         'DimensionUnits': 1, 
  18.         'ResolutionUnits': 0, 
  19.         'Resolution': 300.000000, 
  20.         'Transparent': App.Constants.Boolean.true, 
  21.         'VectorBackground': App.Constants.Boolean.false
  22.         }
  23.  
  24. def Do(Environment):
  25.     App.Do( Environment, 'NewFile',         Preset_NewFile())
  26.  
  27.